From 1e14a86e33cdc9588e4ea89163138ddeba4e602d Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Tue, 6 Sep 2005 18:14:31 +0000 Subject: [PATCH] Destroy domain before cleaning it up. Signed-off-by: Christian Limpach --- tools/python/xen/xend/XendDomainInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 3fab767f6b..8c682334ed 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -796,8 +796,8 @@ class XendDomainInfo: def destroy(self): """Clenup vm and destroy domain. """ - self.cleanup() self.destroy_domain() + self.cleanup() self.saveToDB() return 0 -- 2.30.2